home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000824-20010305 / 000181_news@columbia.edu _Tue Jan 2 14:12:42 2001.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from watsun.cc.columbia.edu (watsun.cc.columbia.edu [128.59.39.2])
  3.     by uhaligani.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id OAA20384
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Tue, 2 Jan 2001 14:12:42 -0500 (EST)
  5. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  6.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id OAA29676
  7.     for <kermit.misc@watsun.cc.columbia.edu>; Tue, 2 Jan 2001 14:12:42 -0500 (EST)
  8. Received: (from news@localhost)
  9.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id NAA07705
  10.     for kermit.misc@watsun.cc.columbia.edu; Tue, 2 Jan 2001 13:51:01 -0500 (EST)
  11. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  12. From: jaltman@columbia.edu (Jeffrey Altman)
  13. Subject: Re: show comm
  14. Date: 2 Jan 2001 18:51:00 GMT
  15. Organization: Columbia University
  16. Message-ID: <92t7uk$7ga$1@newsmaster.cc.columbia.edu>
  17. To: kermit.misc@columbia.edu
  18.  
  19. In article <t542s1n2cqiv46@gxsn.com>, Pete Upson <pju@globalnet.co.uk> wrote:
  20. : Hi
  21. : K95 v1.1.20 on Win98
  22. : Trying to debug an intermittent error in my script....
  23. : Show comm is great to see current settings
  24. : But can I save the output to myfile.log ?
  25. : I want to do something like
  26. :      SHOW COMM > myfile.log
  27. : or
  28. :      SHOW COMM /output=myfile.log
  29. : Is there an easy way to do this?
  30. : Many thanks
  31. : Pete Upson
  32.  
  33.  
  34. You cannot redirect the output of SHOW commands.
  35. But you can save the contents of the scrollback buffer to a file.
  36.  
  37.   SAVE COMMAND SCROLLBACK <file>
  38.  
  39. as well as clear the scrollback 
  40.  
  41.   CLEAR COMMAND SCROLLBACK
  42.  
  43. so 
  44.  
  45.   CLEAR COMMAND SCROLLBACK
  46.   SHOW COMM
  47.   SAVE COMMAND SCROLLBACK <file>
  48.  
  49. will do what you wish.
  50.  
  51.  Jeffrey Altman * Sr.Software Designer      C-Kermit 7.1 Alpha available
  52.  The Kermit Project @ Columbia University   includes Secure Telnet and FTP
  53.  http://www.kermit-project.org/             using Kerberos, SRP, and 
  54.  kermit-support@kermit-project.org          OpenSSL.  SSH soon to follow.